home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Komputer for Alle 2004 #2
/
K-CD-2-2004.ISO
/
OpenOffice Sv
/
f_0397
/
python-core-2.2.2
/
lib
/
test
/
test_longexp.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Python Source
|
2003-07-18
|
280 b
|
13 lines
import sys
from test_support import TestSkipped
REPS = 65580
if sys.platform == 'mac':
import gestalt
if gestalt.gestalt('sysv') > 0x9ff:
raise TestSkipped, 'Triggers pathological malloc slowdown on OSX MacPython'
l = eval("[" + "2," * REPS + "]")
print len(l)